fig = px.scatter_geo(data_country2.sort_values(by=['Date_reported']),
lat="latitude", lon="longitude", color='Country_code',
hover_name="Country", size="Cumulative_deaths",
animation_frame="Date_reported",
title="Daily COVID-19 deaths reported to WHO")
# projection="natural earth")
# scope="south america")
fig.show()